home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / text.ifx < prev    next >
Text File  |  2004-08-03  |  873b  |  46 lines

  1. /*
  2.  * Text.ifx
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Generate text.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Frame number (1 - N)
  9.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  10.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  11.  *    Word(Arg(1),4) = Sequence number
  12.  *    Word(Arg(1),5) = Total number of frames (N)
  13.  *
  14.  * Returns:
  15.  *    0 if successful, non-zero on failure
  16.  *
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21. base  = 'Autofx_Text_'
  22.  
  23. txt   = GETCLIP(base||'Text')
  24. font  = GETCLIP(base||'Font')
  25. size  = GETCLIP(base||'Size')
  26. x     = GETCLIP(base||'X')
  27. y     = GETCLIP(base||'Y')
  28. shad  = GETCLIP(base||'Shadow')
  29.  
  30. GetMain
  31. IF rc ~= 0 THEN EXIT rc
  32. PARSE VAR result name width height .
  33.  
  34. IF x = -1 THEN x = width % 2
  35. IF y = -1 THEN y = height % 2
  36.  
  37. Text '"'font'"' size 100 '"'txt'"'
  38. IF shad THEN DO
  39.    DrawMode Darken
  40.    Point x+2 y+2
  41.    END
  42. DrawMode Normal
  43. Point x y
  44.  
  45. EXIT
  46.